home *** CD-ROM | disk | FTP | other *** search
/ The Best of MacTutor - S…e Code for Volumes 1 to 5 / The Best of MacTutor - Source Code for Volume 1-5 (Wayzata Technology)(6031)(1990).bin / Source Code / #24 (Sep 87) / fortran source / misc stuff / MacXRF Folder / macxrf.par < prev   
Text File  |  1985-02-26  |  1KB  |  40 lines

  1. *************************************************************************
  2. * Title: MacFORTRAN Subprogram Cross-Referencer - Parameter File
  3. *
  4. * Produced by: Absoft South, Inc.             Date:  1/15/85
  5. *
  6. * Purpose: To define constant values that are important to the proper
  7. *         operation of this code.  The constants all represent logical
  8. *         unit numbers for the particular files that may be opened.
  9. *            
  10. * Notes: 
  11. *    
  12. * Warnings/Limitations: 
  13. *      
  14. * Modification History:
  15. *
  16. *************************************************************************
  17. * Logical unit number for the console I/O.
  18.       INTEGER CONSOLE
  19.       PARAMETER (CONSOLE=9)
  20.  
  21. * Logical unit number for the calling structure file.
  22.       INTEGER ISRUNIT
  23.       PARAMETER (ISRUNIT=29)
  24.  
  25. * Logical unit number for the calling structure file.
  26.       INTEGER LEVEL
  27.       PARAMETER (LEVEL=30)
  28.  
  29. * Logical unit number for the symbol table.
  30.       INTEGER SYMBOL
  31.       PARAMETER (SYMBOL=31)
  32.  
  33. * Logical unit number for the reference table.
  34.       INTEGER REFERENCE
  35.       PARAMETER (REFERENCE=32)
  36.  
  37. * Logical unit number for the main program source.
  38.       INTEGER MAIN
  39.       PARAMETER (MAIN=33)
  40.